SmsSendLineNotify

 

Send the message to the LINE app. In order to use this feature, you need to be allocated a token from https://notify-bot.line.me/en/ site.

 

int @SmsSendLineNotify(string token, string msg);

 

Parameters

string token :  Allocated tokens (issued by https://notify-bot.line.me/en/)

string msg : Messages to send

 

Return Value

Returns the result of the transfer.

1 = Transfer Successful

0 = Transfer Failure

 

Example

retn = @SmsSendLineNotify("abckeifkdk22","Test the message..");

if(retn == 1) {

   @MessageBox("Transmission Successful", "Result of Transfer",, MB_OK);

}

else {

   @MessageBox("Transmission Failed", "Result of Transfer", MB_OK);

}

 

Version Information

Supported Version: 10.3.6 or higher

 

Related Helps

@SmsSend()

@SmsSendLineNotify()

@SmsWebSend()